Release 10.1A: OpenEdge Development:
Progress 4GL Reference


LE or < = operator

Returns a TRUE value if the first of two expressions is less than or equal to the second.

Syntax

expression { LE | <= } expression 

expression

A constant, field name, variable name, or expression. The expressions on either side of the LE or < = must be of the same data type, although one can be integer and the other decimal.

Example

This procedure lists all the items with zero or negative on-hand quantities:

r-le.p
FOR EACH item WHERE on-hand <= 0:
    DISPLAY item.item-num item-name on-hand.
END. 

Notes


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095